home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Archive / Games / InputSprocketPPTest / ISpLQuitWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1.4 KB  |  56 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        ISpLQuitWindow.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                xxx put dri here xxx
  13.  
  14.         Other Contact:        xxx put other contact here xxx
  15.  
  16.         Technology:            xxx put technology here xxx
  17.  
  18.     Writers:
  19.  
  20.         (BWS)    Brent Schorsch
  21.  
  22.     Change History (most recent first):
  23.  
  24.          <2>     7/17/98    BWS        add header and change creator for SDK
  25. */
  26.  
  27. /*************************************************************************************
  28.  
  29. File:      ISpLQuitWindow.h
  30.  
  31. Copyright © 1996, 1997, 1998 Apple Computer, Inc., All Rights Reserved
  32.  
  33.  
  34. You may incorporate this sample code into your applications without
  35. restriction, though the sample code has been provided "AS IS" and the
  36. responsibility for its operation is 100% yours.  However, what you are
  37. not permitted to do is to redistribute the source as "DSC Sample Code"
  38. after having made changes. If you're going to re-distribute the source,
  39. we require that you make it clear in the source that the code was
  40. descended from Apple Sample Code, but that you've made changes.
  41.  
  42. *************************************************************************************/
  43.  
  44. #include <LWindow.h>
  45.  
  46. class LQuitWindow : public LWindow
  47. {
  48. public:
  49.     enum {class_ID = 'ISqw'};
  50.     
  51.     LQuitWindow(LStream *inStream);
  52.     
  53.     static LQuitWindow *CreateLQuitWindowStream(LStream *inStream);
  54.  
  55.     void    ClickInGoAway(const EventRecord &inMacEvent);
  56. };